warcraftgeek on “Warcraft 3 problems with computer”

i have downloaded warcraft 3 on by packerd bell laptop and it has been working for at least 2 weeks and once it down the latest patch it hasnt been working it say we could not find war exe in c files check if its probarly installed and it says check if disc is in but it is in help me please

30 Days of .NET [Windows Mobile Applications] – Day 30: Trippr

image And
there you have it: 30 .NET Windows Mobile Applications in 30 Days!

I really liked yesterday’s application, Community
Megaphone Reader
. I think it was because it was a Windows Mobile mashup application.
And we can look forward to many more of these types of applications to come our way.

 

image

Trippr

You’ve probably already figured out what this application does. That’s right it takes
your current GPS position and pulls back pictures that are geotagged for the area
you are in. So while you are riding down the road you can flickrscan for photos
taken near you, possibly as close as the block you are on.

Really cool idea I think. I’ll probably hook this up to the dashboard of my car and
just let it run while I drive around. It should be lots of fun to just see what I
see.

The UI is basic sterile white, but I wanted the photos to be the star of the show
so I went with the one uber true neutral color.

Control are very simple: Update, Menu, GPS, GPS
Start
, GPS Stop, About, and Exit.
Update is the main feature. Any time it is pressed new photos are downloaded.

Again for this project we looked to the GPS
Intermediate Driver Reference
, it has served us well these 30 days and I really
highly recommend it. If you need to do a Windows Mobile GPS application use this and
you are almost done.

Another great API I found is the Flickr.Net
API
. If you need to connect to Flickr in .NET or .NET Compact Framework this is
great. It does all the heavy lifting for you! I was up and running in minutes!

“The Flickr.Net API is a .Net Library for accessing the Flickr API. Written entirely
in C# it can be accessed from with any .Net language in .Net Framework 1.1, .Net Framework
2.0, .Net Compact Framework 2.0 and Mono.”

Update Method

 1: if (gpsPosition
== null || !gpsPosition.LatitudeValid || !gpsPosition.LongitudeValid)
 2: return;
 3:  
 4: double minimumLongitude
= gpsPosition.Longitude - 1;
 5: double minimumLatitude
= gpsPosition.Latitude - 1;
 6: double maximumLongitude
= gpsPosition.Longitude + 1;
 7: double maximumLatitude
= gpsPosition.Latitude + 1;
 8:  
 9: string apikey
= "get_your_own_flickr_key";
 10: Flickr
flickr = new Flickr(apikey);
 11:  
 12: PhotoSearchOptions
options = new PhotoSearchOptions();
 13: options.BoundaryBox
= new BoundaryBox(minimumLongitude, minimumLatitude,
maximumLongitude, maximumLatitude);
 14: options.Extras
|= PhotoSearchExtras.Geo;
 15: options.PerPage
= 10;
 16: options.SortOrder
= PhotoSearchSortOrder.InterestingnessAsc;
 17:  
 18: Photos
photos = flickr.PhotosSearch(options); 
 19: StringBuilder
stringBuilder = new StringBuilder();
 20:  
 21: foreach(Photo
photo in photos.PhotoCollection)
 22: stringBuilder.AppendFormat(@"<img
src=""{0}""
style=""border: 1px black solid; padding:
0px; margin: 1px"" />",
photo.ThumbnailUrl);
 23:  
 24: webBrowser.DocumentText
= stringBuilder.ToString();

Possibilities:

Obviously this needs an auto-update feature and settings for those of use who will
use it on the road. If I click on a picture I’d love to see a larger view of it as
well. and a details listing telling me more about the photo would be great.

Download executable: trippr.cab

Download Source Code: trippr.zip

Thank You:

I appreciate everyone’s encouragement and feedback. This project would not have been
a success without all of you. Keep an out there’s more to come in the future. Wink

Clinton’s Mobile Bandwidth Usage Update


For those of you who have the same morbid curiosity of how much bandwidth you are eating up, I’ve posted my latest numbers.

In June I chewed up 3.6GB putting my yearly total just above 19GB.

Am I spending too much time on my mobile devices?

The All New… Mostly!… Top 50 Applications List


Today we are pleased to announce the latest edition of the Clinton Fitch (Dot) Com! Top 50 Application List.  These application are selected by the staff of the site as being the best and brightest available for Windows Mobile devices.  Some of the applications below are free-of-charge while all of them include a trial period for you to see if the application fits your needs before you purchase it.

The Top 50 list this quarter has several significant changes so if you haven’t visited this list in a while, be sure to go through and check for a title you are interested in trying or buying.  We have also changed the layout of the list to represent the manufacture of the software, a request that many of you have made.  If you see the designation (NEW) by the title, that means the software has been updated.  If you see (NEW)* then it is new to our Top 50.  As you will see there a lot of new titles!

Now through September 31, 2008 all of these applications are available with a 20% discount from the Clinton Fitch (Dot) Com! software store.  In order to receive the discount use the coupon code CFTOP50 when you check out.  Note that the coupon code is only valid at the Clinton Fitch (Dot) Com! software store and is not valid on software that is already on sale.  The coupon however can be used multiple times.

14 Million and Counting…


As we start a fresh new month I want to pass along my thanks to all of you who visit the site and continue to do so.  This site rolled the visitor odometer to 14,000,000 today and I can’t thank all of you enough.  You are the reason I continue to work to make the site the best it can be and offer you the most comprehensive and helpful reviews.

THANK YOU!

mistertbone on “PC Games in Germany”

My friend wants to buy some PC computer games here in the States and is wondering if they will work on her computer back in Germany. Does anyone know if PC games are compatible with European computers?

whiskers on “RE: The night I bought a Wii Fit”

Measuring, measuring, measuring, All Done!

Its pretty easy to get a Wii Fit now, we picked up one a couple weeks ago and Walmart had 4 of them, out in the open not less!

Have been too busy to Wii Fit in the last week, sure I'll get yelled at again by the Wii Fit

Window Mobile developer w C# - Profcon Inc. - San Diego, CA

Windows Mobile,C#,.Net 3+ years experience in the IT industry - required - Experience working in Windows… with debugging Windows Mobile device crashes on… (From Dice)

HTC Touch Pro for Sprint/Verizon Gets FCC Approval

There’s good news for people in the United States who are eager to get their hands on the HTC Touch Pro: a version this upcoming Windows Mobile smartphone has received FCC approval.

iPhone vs. Android: a Study in Contrasts

Apple’s iPhone OS and Google’s Android OS have a great deal in common; both are Linux-based operating systems for smartphones. But Ed Hardy’s latest editorial discusses the dramatic differences that make these mobile platforms almost as different as they can be.


eXTReMe Tracker